@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: white;
    color: white;
}

header {
    position: absolute;
    top: 0;
    height: 140px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    background: transparent;
    z-index: 1000;
}

/* Logo */
.logo {
    color: white;
    text-decoration: none;
    flex: 0 0 auto;
    margin: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: 70px;
}

/* Header Social Icons - Completely hidden on desktop */
.header-social {
    display: none !important;
}

/* Nav */
nav {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: 400;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    font-weight: 600;
}

/* Social icons */
.social {
    display: flex;
    gap: 10px;
    position: absolute;
    right: 0;
}

.social a {
    font-size: clamp(16px, 2vw, 20px);
    color: white;
    transition: color 0.3s ease;
    text-decoration: none;
}

.fab {
    font-size: clamp(20px, 3vw, 30px);
}

.social a:hover {
    color: #7d7d7d;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: clamp(20px, 3vw, 28px);
    cursor: pointer;
    color: white;
}

/* Close Button */
.close-btn {
    display: none;
    font-size: clamp(20px, 3vw, 28px);
    color: white;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 30px;
}

/* Mobile nav */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        height: 100px;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: flex;
        order: 1;
        flex: 0 0 auto;
    }

    /* Header Social Icons - Visible on mobile only */
    .header-social {
        display: flex !important;
        order: 2;
        gap: 15px;
        justify-content: center;
        flex: 1;
    }

    .header-social a {
        font-size: 20px;
        color: white;
        transition: color 0.3s ease;
        text-decoration: none;
    }

    .header-social .fab {
        font-size: 24px;
    }

    .header-social a:hover {
        color: #7d7d7d;
    }

    .logo {
        order: 3;
        margin-left: 0;
        flex: 0 0 auto;
    }

    .logo img {
        height: 50px;
        width: 50px;
    }

    a.logo {
        margin: 0;
        display: flex;
        align-items: center;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        text-align: center;
        gap: 30px;
        transition: left 0.3s ease-in-out;
        z-index: 999;
    }

    nav.active {
        left: 0;
    }

    .close-btn {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
    }

    .social {
        margin-top: 20px;
        position: static;
        justify-content: center;
    }
}